home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
research
/
lib
/
obsolete
/
nr_svd.pro
< prev
next >
Wrap
Text File
|
1997-07-08
|
649b
|
27 lines
; $Id: nr_svd.pro,v 1.2 1997/01/15 04:02:19 ali Exp $
;
; Copyright (c) 1994-1997, Research Systems, Inc. All rights reserved.
; Unauthorized reproduction prohibited.
;+
; NAME:
; NR_SVD
;
; PURPOSE:
;
; NR_SVD now executes SVDC, the updated version of this routine.
; SVDC has been modified to accept row vectors as the default input
; and column vectors with use of the COLUMN keyword. This routine
; preserves the input of column vectors.
;
; MODIFICATION HISTORY:
; Written by: BMH Nov, 1994
;
;-
PRO NR_SVD, a, w, u, v, DOUBLE=double
IF NOT KEYWORD_SET(double) THEN double = 0
SVDC, a, w, u, v, DOUBLE=double, /COLUMN
END